projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d4e652
)
(base64_encode_1): Don't add unnecessary newline at the tail.
author
Kenichi Handa
<handa@m17n.org>
Wed, 7 Apr 1999 05:40:54 +0000
(
05:40
+0000)
committer
Kenichi Handa
<handa@m17n.org>
Wed, 7 Apr 1999 05:40:54 +0000
(
05:40
+0000)
src/fns.c
patch
|
blob
|
history
diff --git
a/src/fns.c
b/src/fns.c
index 401789e2bab3583e5436c96d0a6e07237940e5cb..10fbbdc5cc18f4c1cbcfc3a4223dfcf3a170c4e6 100644
(file)
--- a/
src/fns.c
+++ b/
src/fns.c
@@
-2999,12
+2999,6
@@
base64_encode_1 (from, to, length, line_break)
*e++ = base64_value_to_char[0x3f & c];
}
- /* Complete last partial line. */
-
- if (line_break)
- if (counter > 0)
- *e++ = '\n';
-
return e - to;
}